home *** CD-ROM | disk | FTP | other *** search
- global page
-
- on mouseUp me
- if sprite(43).movieRate = 1 then
- pause(sprite(43))
- updateStage()
- set the memberNum of sprite 43 to 8
- updateStage()
- end if
- page = 1
- cursor(0)
- mynumber = me.spriteNum
- case mynumber of
- 7:
- go(1, "photo")
- updateStage()
- 8:
- go(1, "clip")
- updateStage()
- 9:
- go(1, "comic")
- updateStage()
- 10:
- go(1, "link")
- updateStage()
- end case
- end
-
- on mouseEnter me
- cursor([1, 2])
- mynumber = me.spriteNum
- case mynumber of
- 7:
- set the memberNum of sprite the spriteNum of me to the number of member "C1_on"
- 8:
- set the memberNum of sprite the spriteNum of me to the number of member "C2_on"
- 9:
- set the memberNum of sprite the spriteNum of me to the number of member "C3_on"
- 10:
- set the memberNum of sprite the spriteNum of me to the number of member "C4_on"
- end case
- end
-
- on mouseLeave me
- cursor(0)
- mynumber = me.spriteNum
- case mynumber of
- 7:
- set the memberNum of sprite the spriteNum of me to the number of member "C1_off"
- 8:
- set the memberNum of sprite the spriteNum of me to the number of member "C2_off"
- 9:
- set the memberNum of sprite the spriteNum of me to the number of member "C3_off"
- 10:
- set the memberNum of sprite the spriteNum of me to the number of member "C4_off"
- end case
- end
-
- on mouseWithin me
- cursor([1, 2])
- end
-